home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9310.ZIP / DFPP03.ZIP / CHECKBOX.H < prev    next >
C/C++ Source or Header  |  1993-09-24  |  219b  |  15 lines

  1. // ----------- checkbox.h
  2.  
  3. #ifndef CHECKBOX_H
  4. #define CHECKBOX_H
  5.  
  6. #include "button.h"
  7.  
  8. class CheckBox : public Button    {
  9. public:
  10.     CheckBox(const char *lbl, int lf, int tp, DFWindow *par);
  11. };
  12.  
  13. #endif
  14.  
  15.